home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntlb20 / lib / alphasor.c < prev    next >
C/C++ Source or Header  |  1991-04-13  |  304b  |  17 lines

  1. /*
  2. **  ALPHASORT
  3. **  Trivial sorting predicate for scandir; puts entries in alphabetical order.
  4. */
  5.  
  6. #include <sys/types.h>
  7. #include <sys/dir.h>
  8. #include <string.h>
  9.  
  10. int
  11. alphasort(d1, d2)
  12.     struct direct    **d1;
  13.     struct direct    **d2;
  14. {
  15.     return strcmp(d1[0]->d_name, d2[0]->d_name);
  16. }
  17.